time.Time.nsec (method)

19 uses

	time (current package)
		time.go#L176: func (t *Time) nsec() int32 {
		time.go#L277: 	return ts > us || ts == us && t.nsec() > u.nsec()
		time.go#L287: 	return ts < us || ts == us && t.nsec() < u.nsec()
		time.go#L299: 			tc, uc = int64(t.nsec()), int64(u.nsec())
		time.go#L320: 	return t.sec() == u.sec() && t.nsec() == u.nsec()
		time.go#L902: 	return int(t.nsec())
		time.go#L1172: 	nsec := t.nsec() + int32(d%1e9)
		time.go#L1202: 	d := Duration(t.sec()-u.sec())*Second + Duration(t.nsec()-u.nsec())
		time.go#L1265: 	return Date(year+years, month+Month(months), day+days, hour, min, sec, int(t.nsec()), t.Location())
		time.go#L1442: 	return t.unixSec()*1e3 + int64(t.nsec())/1e6
		time.go#L1451: 	return t.unixSec()*1e6 + int64(t.nsec())/1e3
		time.go#L1461: 	return (t.unixSec())*1e9 + int64(t.nsec())
		time.go#L1492: 	nsec := t.nsec()
		time.go#L1816: 	nsec := t.nsec()